Assignment 3 Solution
Question 1
Given an array containing 0s and 1s, write an algorithm to sort the array so that all 0s come first followed by 1s
- Without Comments
- With comments
public static void sortArray(int[] arr) {
int left = 0;
int right = arr.length - 1;
while (left < right) {
if (arr[left] == 1 && arr[right] == 0) {
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
}
if (arr[left] == 0) {
left++;
}
if (arr[right] == 1) {
right--;
}
}
}
/**
*
* @param arr The input array containing 0s and 1s to be sorted.
* @return The sorted array with all 0s first followed by 1s.
*/
public static void sortArray(int[] arr) {
int left = 0;
int right = arr.length - 1;
while (left < right) {
if (arr[left] == 1 && arr[right] == 0) {
// Swap values at left and right
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
}
if (arr[left] == 0) {
left++;
}
if (arr[right] == 1) {
right--;
}
}
}
Question 2
Given an array containing 0s, 1s, and 2s, write an algorithm to sort the array so that all 0s come first followed by 1s and then 2s
- Without Comments
- With comments
public static void sort012(int arr[], int n) {
int low = 0, mid = 0, high = n - 1;
while (mid <= high) {
if (arr[mid] == 0) {
int temp = arr[low];
arr[low] = arr[mid];
arr[mid] = temp;
low++;
mid++;
} else if (arr[mid] == 1) {
mid++;
} else {
int temp = arr[mid];
arr[mid] = arr[high];
arr[high] = temp;
high--;
}
}
}
/**
* @param arr The input array containing 0s, 1s, and 2s to be sorted.
* @return The sorted array with all 0s first, then 1s, then 2s in the end.
*/
public static void sort012(int arr[], int n) {
int low = 0, mid = 0, high = n - 1;
while (mid <= high) { // while there are elements to be sorted
if (arr[mid] == 0) { // current element is 0
// swap arr[low] and arr[mid]
int temp = arr[low];
arr[low] = arr[mid];
arr[mid] = temp;
// increment low and mid pointers
low++;
mid++;
} else if (arr[mid] == 1) { // current element is 1
// leave it as it is
mid++;
} else { // current element is 2
// swap arr[mid] and arr[high]
int temp = arr[mid];
arr[mid] = arr[high];
arr[high] = temp;
// decrement high pointer
high--;
}
}
}
Question 4
Find the minimum number of swaps required to bring all elements less than a given value together at the start of the array
- Without Comments
- With comments
public static int minSwaps(int[] arr, int val) {
int count = 0;
for (int i = 0; i < arr.length; i++) {
if (arr[i] < val) {
count++;
}
}
int left = 0;
int right = count - 1;
int swaps = 0;
while (left < right) {
if (arr[left] >= val && arr[right] < val) {
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
swaps++;
left++;
right--;
} else if (arr[left] < val) {
left++;
} else if (arr[right] >= val) {
right--;
}
}
return swaps;
}
/**
* @param arr The input array to be sorted with minimum swaps.
* @param val The value to which all elements less than it should be brought
* together at the start.
* @return The minimum number of swaps required to sort the array.
*/
public static int minSwaps(int[] arr, int val) {
// Step 1: Count the number of elements less than given value
int count = 0;
for (int i = 0; i < arr.length; i++) {
if (arr[i] < val) {
count++;
}
}
// Step 2: Use two pointers to swap elements and count the number of swaps
// required
int left = 0;
int right = count - 1;
int swaps = 0;
while (left < right) {
if (arr[left] >= val && arr[right] < val) {
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
swaps++;
left++;
right--;
} else if (arr[left] < val) {
left++;
} else if (arr[right] >= val) {
right--;
}
}
return swaps;
}
Question 5
[isn't clear] Given two array, sort first array according to the order defined in second array
Question 6
Separate even numbers from the odd numbers. This method takes an array of integers and moves all even numbers to the left side of the array and all odd numbers to the right side of the array
- Without Comments
- With comments
public static void separateEvenOdd(int[] arr) {
int left = 0;
int right = arr.length - 1;
while (left < right) {
if (arr[left] % 2 == 0) {
left++;
} else if (arr[right] % 2 != 0) {
right--;
} else {
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
left++;
right--;
}
}
System.out.println(Arrays.toString(arr));
}
// Example code for: Q6. ques 6
// int[] evenOdd = { 13, 2, 12, 3, 21, 46, 5, 7 };
// separateEvenOdd(evenOdd);
/**
* @param arr The input array to be separated into even and odd numbers.
*/
public static void separateEvenOdd(int[] arr) {
// Initialize left pointer to the first index of the array
int left = 0;
// Initialize right pointer to the last index of the array
int right = arr.length - 1;
// Loop until left pointer is greater than or equal to right pointer
while (left < right) {
// If the number at the left pointer is even, move the left pointer to the right
if (arr[left] % 2 == 0) {
left++;
}
// If the number at the right pointer is odd, move the right pointer to the left
else if (arr[right] % 2 != 0) {
right--;
}
// If the number at the left pointer is odd and the number at the right pointer
// is even, swap them and move both pointers towards the center
else {
int temp = arr[left];
arr[left] = arr[right];
arr[right] = temp;
left++;
right--;
}
}
// Print the modified array
System.out.println(Arrays.toString(arr));
}
Question 7
Given an array of positive elements, perform a sequence of reduction operations where the smallest positive element is subtracted from all elements until no positive values remain. Print the number of elements remaining after each reduction operation
- Without Comments
- With comments
public static void reductionProcess(int[] arr) {
while (arr.length > 0) {
int minValue = arr[0];
for (int i = 1; i < arr.length; i++) {
minValue = Math.min(minValue, arr[i]);
}
for (int i = 0; i < arr.length; i++) {
arr[i] -= minValue;
}
int count = 0;
for (int i : arr) {
if (i != 0) {
count++;
}
}
int[] newArray = new int[count];
int index = 0;
for (int i : arr) {
if (i != 0) {
newArray[index++] = i;
}
}
arr = newArray;
System.out.println(Arrays.toString(arr));
System.out.println("length of array: " + arr.length);
}
}
// Example code for: Q7. ques 7
// int[] arr = { 5, 8, 12, 9, 21 };
// reductionProcess(arr);
/**
* @param arr The initial array of positive integers to perform reduction
* operations on.
*/
public static void reductionProcess(int[] arr) {
while (arr.length > 0) {
// Step 1: Find the minimum value in the array
int minValue = arr[0];
for (int i = 1; i < arr.length; i++) {
minValue = Math.min(minValue, arr[i]);
}
// Step 2: Subtract the minimum value from each element in the array
for (int i = 0; i < arr.length; i++) {
arr[i] -= minValue;
}
// Step 3: Remove the elements with value 0 from the array
// count number of non-zero elements in the original array
int count = 0;
for (int i : arr) {
if (i != 0) {
count++;
}
}
// make new array with above count
int[] newArray = new int[count];
int index = 0;
// add non-zero elements from prev array to a new array
for (int i : arr) {
if (i != 0) {
newArray[index++] = i;
}
}
arr = newArray;
System.out.println(Arrays.toString(arr));
// Print the number of elements left in the array
System.out.println("length of array: " + arr.length);
}
}
Question 8
Given two sorted arrays. Sort the elements of these arrays so that first half of sorted elements will lie in first array and second half lies in second array
(Question Simplified): How to sort two sorted arrays with O(1) extra space such that the first half of the sorted elements lie in the first array and the second half lies in the second array?
- Without Comments
- With comments
public static void sortArrays(int[] arr1, int[] arr2) {
int n = arr1.length;
int m = arr2.length;
int mid = (n + m) / 2;
if ((n + m) % 2 == 1) {
mid += 1;
}
int i = 0;
int j = 0;
while (i < mid && j < m) {
if (arr1[i] > arr2[j]) {
int temp = arr1[i];
arr1[i] = arr2[j];
arr2[j] = temp;
i++;
} else {
i++;
}
}
Arrays.sort(arr1, mid, n);
Arrays.sort(arr2, 0, m);
}
// Example code for: Q8. ques 8
// int[] arr1 = { 1, 4, 7, 8 };
// int[] arr2 = { 2, 3, 5, 6 };
// System.out.println("Original arrays:");
// System.out.println(Arrays.toString(arr1));
// System.out.println(Arrays.toString(arr2));
// sortArrays(arr1, arr2);
// System.out.println("Sorted arrays with first half in arr1 and second half in
// arr2:");
// System.out.println(Arrays.toString(arr1));
// System.out.println(Arrays.toString(arr2));
public static void sortArrays(int[] arr1, int[] arr2) {
// Get the lengths of the two arrays
int n = arr1.length;
int m = arr2.length;
// Calculate the middle index of the combined array
int mid = (n + m) / 2;
if ((n + m) % 2 == 1) {
mid += 1; // If the length is odd, add 1 to the middle index
}
// Initialize pointers i and j at the beginning of both arrays
int i = 0;
int j = 0;
// Swap elements until i and j reach the middle index
while (i < mid && j < m) {
if (arr1[i] > arr2[j]) {
int temp = arr1[i];
arr1[i] = arr2[j];
arr2[j] = temp;
i++; // Increment i since we have placed an element into arr1
} else {
i++; // Increment i since arr1[i] <= arr2[j]
}
}
// Sort both arrays independently after the middle index
Arrays.sort(arr1, mid, n);
Arrays.sort(arr2, 0, m);
}
Question 9
Given two unsorted arrays, find union and intersection of these two
- Without Comments
- With comments
public static void findUnionAndIntersection(int[] arr1, int[] arr2) {
HashSet<Integer> set1 = new HashSet<>();
HashSet<Integer> set2 = new HashSet<>();
for (int i : arr1) {
set1.add(i);
}
for (int i : arr2) {
set2.add(i);
}
System.out.println("original Set1: " + set1);
System.out.println("original Set2: " + set2);
set1.retainAll(set2);
System.out.println("Intersection of given arrays: " + set1);
set1.addAll(set2);
System.out.println("Union of given arrays: " + set1);
}
// Example code for: // Q9. ques 9
// int[] arr1 = { 7, 1, 5, 2, 3, 6 };
// int[] arr2 = { 3, 8, 6, 20, 7 };
// findUnionAndIntersection(arr1, arr2);
public static void findUnionAndIntersection(int[] arr1, int[] arr2) {
// Using HashSet to store unique elements of both arrays
HashSet<Integer> set1 = new HashSet<>();
HashSet<Integer> set2 = new HashSet<>();
for (int i : arr1) {
set1.add(i);
}
for (int i : arr2) {
set2.add(i);
}
System.out.println("original Set1: " + set1);
System.out.println("original Set2: " + set2);
// finding intersection of two arrays
set1.retainAll(set2);
System.out.println("Intersection of given arrays: " + set1);
// finding union of two arrays
set1.addAll(set2);
System.out.println("Union of given arrays: " + set1);
}
Question 10
[question seems unclear/incomplete] In given integer list that support three functions findMin, findMax, find-Median. Sort the array. arrays
- Without Comments
- With comments
public class ArrayOperations {
public static double findMedian(int[] a, int n) {
Arrays.sort(a);
if (n % 2 != 0) {
return (double) a[n / 2];
}
return (double) (a[(n - 1) / 2] + a[n / 2]) / 2;
}
public static int findMax(int[] a, int n) {
int m = a[0];
for (int i = 0; i < n; i++) {
m = Math.max(m, a[i]);
}
return m;
}
public static int findMin(int[] a, int n) {
int m = a[0];
for (int i = 0; i < n; i++) {
m = Math.min(m, a[i]);
}
return m;
}
}
// Example code for: Q10. ques 10
// int[] numbers = { 2, 5, 7, 1, 8, 4 };
// // Find the median value of the array
// double median = ArrayOperations.findMedian(numbers, numbers.length);
// System.out.println("Median: " + median);
// // Find the maximum value of the array
// int max = ArrayOperations.findMax(numbers, numbers.length);
// System.out.println("Max: " + max);
// // Find the minimum value of the array
// int min = ArrayOperations.findMin(numbers, numbers.length);
// System.out.println("Min: " + min);
public class ArrayOperations {
/**
* Finds the median value of an array of integers.
*
* @param a the array of integers
* @param n the length of the array
* @return the median value of the array
*/
public static double findMedian(int[] a, int n) {
Arrays.sort(a);
if (n % 2 != 0) {
return (double) a[n / 2];
}
return (double) (a[(n - 1) / 2] + a[n / 2]) / 2;
}
/**
* Finds the maximum value in an array of integers.
*
* @param a the array of integers
* @param n the length of the array
* @return the maximum value in the array
*/
public static int findMax(int[] a, int n) {
int m = a[0];
for (int i = 0; i < n; i++) {
m = Math.max(m, a[i]);
}
return m;
}
/**
* Finds the minimum value in an array of integers.
*
* @param a the array of integers
* @param n the length of the array
* @return the minimum value in the array
*/
public static int findMin(int[] a, int n) {
int m = a[0];
for (int i = 0; i < n; i++) {
m = Math.min(m, a[i]);
}
return m;
}
}